5fc80980399f1e0fe669042f0532686cd81809b1,platform/lang-impl/src/com/intellij/application/options/codeStyle/arrangement/match/ArrangementMatchingRulesControl.java,ArrangementMatchingRulesControl,onSelectionChange,#ListSelectionEvent#,237
Before Change
}
private void onSelectionChange(@NotNull ListSelectionEvent e) {
if (!mySkipSelectionChange && !e.getValueIsAdjusting()) {
refreshEditor();
}
}
After Change
}
private void onSelectionChange(@NotNull ListSelectionEvent e) {
if (mySkipSelectionChange || e.getValueIsAdjusting()) {
return;
}
refreshEditor();
}